home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / dev / src / expat-src.lha / expat-1.95.2 / examples / Makefile.amiga < prev    next >
Encoding:
Makefile  |  2001-11-25  |  1.4 KB  |  49 lines

  1. # Generated automatically from Makefile.in by configure.
  2. ################################################################
  3. # Process this file with top-level configure script to produce Makefile
  4. #
  5. # Copyright 2000 Clark Cooper
  6. #
  7. #  This file is part of EXPAT.
  8. #
  9. #  EXPAT is free software; you can redistribute it and/or modify it
  10. #  under the terms of the License (based on the MIT/X license) contained
  11. #  in the file COPYING that comes with this distribution.
  12. #
  13. # EXPAT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  14. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  15. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  16. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  17. # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  18. # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  19. # SOFTWARE OR THE USE OR OTHER DEALINGS IN EXPAT.
  20. #
  21.  
  22. INCDIR = ../include
  23.  
  24. CPPFLAGS = 
  25. LDFLAGS = -noixemul
  26. LIBS = -L$(LIBDIR)
  27. CC = gcc
  28. CFLAGS = -g -noixemul -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -I$(INCDIR)
  29.  
  30. srcdir = .
  31. top_srcdir = ..
  32.  
  33.  
  34. all: elements outline
  35.  
  36. elements: elements.o
  37.     $(CC) $(LDFLAGS) -o $@ $<
  38.  
  39. outline: outline.o
  40.     $(CC) $(LDFLAGS) -o $@ $<
  41.  
  42. check:    $(SUBDIRS)
  43.     @echo
  44.     @echo This package does not yet have a regression test.
  45.     @echo
  46.  
  47. clean:
  48.     rm -f elements outline core *.o *~
  49.